diff options
author | Volker Stolz <vs@FreeBSD.org> | 2005-08-29 07:32:46 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2005-08-29 07:32:46 +0000 |
commit | 71b386d0e8b7c51e49759f59ed0211660bcd46fe (patch) | |
tree | d22c5c8c1191052263e5edcc8e151545641588d9 /java | |
parent | 83bf6d0dbc05edd83cdf36b06c612a138dd4fe5a (diff) | |
download | ports-71b386d0e8b7c51e49759f59ed0211660bcd46fe.tar.gz ports-71b386d0e8b7c51e49759f59ed0211660bcd46fe.zip |
- fix build on 4.x: include missing header
- USE_LIBTOOL, drop ltmain-patch
Notes
Notes:
svn path=/head/; revision=141248
Diffstat (limited to 'java')
-rw-r--r-- | java/classpath/Makefile | 1 | ||||
-rw-r--r-- | java/classpath/files/patch-ltmain.sh | 15 | ||||
-rw-r--r-- | java/classpath/files/patch-native_target_generic_target__generic__network.h | 13 |
3 files changed, 14 insertions, 15 deletions
diff --git a/java/classpath/Makefile b/java/classpath/Makefile index dc04f9ac1446..9bb6d8a2e925 100644 --- a/java/classpath/Makefile +++ b/java/classpath/Makefile @@ -17,6 +17,7 @@ COMMENT= A GNU project to create a free Java class library BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip +USE_LIBTOOL_VER=15 USE_GNOME= gtk20 libartlgpl2 pkgconfig USE_JAVA= yes USE_JIKES= yes diff --git a/java/classpath/files/patch-ltmain.sh b/java/classpath/files/patch-ltmain.sh deleted file mode 100644 index ade64300a950..000000000000 --- a/java/classpath/files/patch-ltmain.sh +++ /dev/null @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Wed Sep 1 15:46:52 2004 -+++ ltmain.sh Wed Sep 1 15:47:02 2004 -@@ -5550,10 +5550,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/java/classpath/files/patch-native_target_generic_target__generic__network.h b/java/classpath/files/patch-native_target_generic_target__generic__network.h new file mode 100644 index 000000000000..51e4f86d6fa7 --- /dev/null +++ b/java/classpath/files/patch-native_target_generic_target__generic__network.h @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- native/target/generic/target_generic_network.h.orig ++++ native/target/generic/target_generic_network.h +@@ -666,6 +666,7 @@ + #ifndef TARGET_NATIVE_NETWORK_SOCKET_SET_OPTION_SO_TIMEOUT + #include <sys/types.h> + #include <sys/socket.h> ++ #include <sys/time.h> + #define TARGET_NATIVE_NETWORK_SOCKET_SET_OPTION_SO_TIMEOUT(socketDescriptor,flag,result) \ + do { \ + struct timeval __value; \ |