dect
/
libpcap
Archived
13
0
Fork 0

Well, that was dumb. Just throwing away everything after the first

non-decimal-digit, non-"." character in the version number suffices.
This commit is contained in:
guy 2008-10-23 06:28:10 +00:00
parent 763adefead
commit 34fa6a98c5
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
# @(#) $Header: /tcpdump/master/libpcap/Makefile.in,v 1.134 2008-10-23 05:56:59 guy Exp $ (LBL)
# @(#) $Header: /tcpdump/master/libpcap/Makefile.in,v 1.135 2008-10-23 06:28:10 guy Exp $ (LBL)
#
# Various configurable paths (remember to edit Makefile.in, not Makefile)
@ -342,7 +342,7 @@ libpcap.dylib: $(OBJ)
$(CC) -dynamiclib -undefined error -o libpcap.`cat VERSION`.dylib $(OBJ) \
-install_name $(libdir)/libpcap.A.dylib \
-compatibility_version 1 \
-current_version `cat VERSION | sed 's/[^0-9.][^0-9.]*.*$$//'`
-current_version `cat VERSION | sed 's/[^0-9.].*$$//'`
scanner.c: $(srcdir)/scanner.l
@rm -f $@