diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-03-29 16:35:19 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-03-29 16:35:19 +0000 |
commit | 6e2b9def0c49c3e565a14f5987fd3e9f46d285c6 (patch) | |
tree | c23d8d7c62c20c0978b7a404b38eb7b9d5596d0f /editors | |
parent | faa774bb672904227e681f88c16cfceef448ef6c (diff) | |
download | FreeBSD-ports-6e2b9def0c49c3e565a14f5987fd3e9f46d285c6.zip FreeBSD-ports-6e2b9def0c49c3e565a14f5987fd3e9f46d285c6.tar.gz |
-pthread --> ${PTHREAD_LIBS}
-D_THREAD_SAFE --> ${PTHREAD_CFLAGS}
Note: my first intention was to test this out on bento/beta, but per ade's
requiest I opted to do it quickly.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/gedit/Makefile | 2 | ||||
-rw-r--r-- | editors/gedit2/Makefile | 2 | ||||
-rw-r--r-- | editors/ghex/Makefile | 2 | ||||
-rw-r--r-- | editors/ghex2/Makefile | 2 | ||||
-rw-r--r-- | editors/glimmer/Makefile | 2 | ||||
-rw-r--r-- | editors/gmanedit/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/editors/gedit/Makefile b/editors/gedit/Makefile index daa6e91..790cceb 100644 --- a/editors/gedit/Makefile +++ b/editors/gedit/Makefile @@ -26,7 +26,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= gedit.1 pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ diff --git a/editors/gedit2/Makefile b/editors/gedit2/Makefile index daa6e91..790cceb 100644 --- a/editors/gedit2/Makefile +++ b/editors/gedit2/Makefile @@ -26,7 +26,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= gedit.1 pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ diff --git a/editors/ghex/Makefile b/editors/ghex/Makefile index a369cf6..115052f 100644 --- a/editors/ghex/Makefile +++ b/editors/ghex/Makefile @@ -23,7 +23,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ diff --git a/editors/ghex2/Makefile b/editors/ghex2/Makefile index a369cf6..115052f 100644 --- a/editors/ghex2/Makefile +++ b/editors/ghex2/Makefile @@ -23,7 +23,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ diff --git a/editors/glimmer/Makefile b/editors/glimmer/Makefile index 2b2ef2e..92fa787 100644 --- a/editors/glimmer/Makefile +++ b/editors/glimmer/Makefile @@ -29,7 +29,7 @@ PYTHON_LIBS= -lssl -lcrypto PYTHON_LIBS+= -lutil -lreadline -lcrypt -lpython pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|-lpython|${PYTHON_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ diff --git a/editors/gmanedit/Makefile b/editors/gmanedit/Makefile index 0012d8f..e374417 100644 --- a/editors/gmanedit/Makefile +++ b/editors/gmanedit/Makefile @@ -28,7 +28,7 @@ post-extract: @${RM} -rf ${WRKSRC}/config.cache pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ |