diff options
author | sobomax <sobomax@FreeBSD.org> | 2003-04-14 15:39:50 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2003-04-14 15:39:50 +0000 |
commit | d070da1db6fd9da4c41619e0e16586f43b638dee (patch) | |
tree | be706de59b52876e8520ec570c89cc6840ebaa8a /x11-toolkits/wxgtk | |
parent | 617eb0f086a1ca89ada0ab03a30434507bd9bb55 (diff) | |
download | FreeBSD-ports-d070da1db6fd9da4c41619e0e16586f43b638dee.zip FreeBSD-ports-d070da1db6fd9da4c41619e0e16586f43b638dee.tar.gz |
Attempt to nail down strange problems people are reporting usially
around new release. Apparently, those problem steam from the fact
that those users doesn't update their kernels along with userland,
so that CONFIGURE_TARGET supplied by bsd.port.mk doesn't match
OS version detected by configure script, making it believe that
it is in the cross-compile environment. The same problem observed
on bento.
Use USE_REINPLACE while I'm here.
Diffstat (limited to 'x11-toolkits/wxgtk')
-rw-r--r-- | x11-toolkits/wxgtk/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/x11-toolkits/wxgtk/Makefile b/x11-toolkits/wxgtk/Makefile index 6994db7..0bcc8df 100644 --- a/x11-toolkits/wxgtk/Makefile +++ b/x11-toolkits/wxgtk/Makefile @@ -23,6 +23,7 @@ USE_BZIP2= yes USE_X_PREFIX= yes USE_MESA= yes USE_GMAKE= yes +USE_REINPLACE= yes USE_GNOMENG= yes USE_GNOME= gtk12 GNU_CONFIGURE= yes @@ -31,7 +32,9 @@ CONFIGURE_ARGS= --with-libpng=sys \ --with-libjpeg=sys \ --with-libtiff=sys \ --with-zlib=sys \ - --with-opengl + --with-opengl \ + --host=${CONFIGURE_TARGET} \ + --build=${CONFIGURE_TARGET} CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} \ -I${WRKSRC}/include \ -I${LOCALBASE}/include \ @@ -40,8 +43,8 @@ CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} \ -L${X11BASE}/lib -lm" pre-patch: - @${PERL} -pi -e 's|-l\$$THREADS_LIB|${PTHREAD_LIBS}|g ; \ - s|-l\$$THREADS_LINK|${PTHREAD_LIBS}|g' \ + @${REINPLACE_CMD} -e 's|-l[$$]THREADS_LIB|${PTHREAD_LIBS}|g ; \ + s|-l[$$]THREADS_LINK|${PTHREAD_LIBS}|g' \ ${WRKSRC}/configure post-install: |