diff options
author | nork <nork@FreeBSD.org> | 2006-05-19 13:57:34 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2006-05-19 13:57:34 +0800 |
commit | 2c6294d89d054533e69611dc012b4fd859557e1c (patch) | |
tree | 9488ec321289b00addc71d1db96b32052e1b7f9d /textproc/rast | |
parent | b397bb9360773fdb7309f02bfb5414bccb529661 (diff) | |
download | freebsd-ports-gnome-2c6294d89d054533e69611dc012b4fd859557e1c.tar.gz freebsd-ports-gnome-2c6294d89d054533e69611dc012b4fd859557e1c.tar.zst freebsd-ports-gnome-2c6294d89d054533e69611dc012b4fd859557e1c.zip |
Cosmetic change:
o Use BDB_* macros instead of direct.
Oked by: kuriyama
Diffstat (limited to 'textproc/rast')
-rw-r--r-- | textproc/rast/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/rast/Makefile b/textproc/rast/Makefile index e142e0443990..826d1780722d 100644 --- a/textproc/rast/Makefile +++ b/textproc/rast/Makefile @@ -24,8 +24,8 @@ USE_GMAKE= YES USE_RUBY= YES CONFIGURE_ARGS= --with-apr-config=${LOCALBASE}/bin/apr-1-config \ --with-apu-config=${LOCALBASE}/bin/apu-1-config \ - --with-db-includes="-I${LOCALBASE}/include/db42" \ - --with-db-libs="-L${LOCALBASE}/lib/db42 -ldb-4.2" \ + --with-db-includes="-I${BDB_INCLUDE_DIR}" \ + --with-db-libs="-L${BDB_LIB_DIR} -l${BDB_LIB_NAME}" \ --with-ruby=${LOCALBASE}/bin/ruby \ --with-default-encoding=${DEFAULT_ENCODING} \ --with-filter-moduledir=${PREFIX}/lib/rast/filters |