diff options
author | marcus <marcus@FreeBSD.org> | 2002-04-14 00:51:14 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-04-14 00:51:14 +0800 |
commit | 51f19cd19f8734caa6d726efd82cc0f70ffdad01 (patch) | |
tree | 22d977f9d53187fff9cdc8746604571f273b77d8 /multimedia/ogle-gui | |
parent | 391eee5e8d4fab1a5432a3bb3c54390cc898306f (diff) | |
download | freebsd-ports-graphics-51f19cd19f8734caa6d726efd82cc0f70ffdad01.tar.gz freebsd-ports-graphics-51f19cd19f8734caa6d726efd82cc0f70ffdad01.tar.zst freebsd-ports-graphics-51f19cd19f8734caa6d726efd82cc0f70ffdad01.zip |
Allow ogle and ogle-gui to find the libxml2 header files.
According to www.libxml.org, libxml and libxml2 header files should be
#include'd as <libxml/header.h> and not just <header.h>.
Reported by: many
Submitted by: lioux
Reviewed by: sobomax
Approved by: lioux
Diffstat (limited to 'multimedia/ogle-gui')
-rw-r--r-- | multimedia/ogle-gui/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/ogle-gui/Makefile b/multimedia/ogle-gui/Makefile index 095785ddbc5..a250e11edd5 100644 --- a/multimedia/ogle-gui/Makefile +++ b/multimedia/ogle-gui/Makefile @@ -53,7 +53,8 @@ post-patch: s!(CONFIG_FILE(\s|=)\")[^/]+?/!\1${LOCALBASE}/!; \ s|(CONFIG_FILE_DTD=\")[^/]+?/|\1${LOCALBASE}/|g; \ s|(PACKAGE_PIXMAPS_DIR=\").+\"|\1${PREFIX}/${SHARE_DATADIR}/ogle_gui/\"|; \ - s|%%LOCALBASE%%|${LOCALBASE}|" \ + s|%%LOCALBASE%%|${LOCALBASE}|; \ + s|(xmlversion.h>)|libxml/\1|" \ ${CONFIGURE_WRKSRC}/configure post-configure: |