aboutsummaryrefslogtreecommitdiffstats
path: root/tools/missing-macros
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-04-12 20:19:52 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-04-12 20:19:52 +0000
commitb32797cc551041fe37a8a04b48f014369d5f7cc1 (patch)
tree28046f0992d384aac19c1c37f50c25426c2699d6 /tools/missing-macros
parenta9977eca9145b9f061ceb1d1604f59efba1b2949 (diff)
downloadupstream-b32797cc551041fe37a8a04b48f014369d5f7cc1.tar.gz
upstream-b32797cc551041fe37a8a04b48f014369d5f7cc1.tar.bz2
upstream-b32797cc551041fe37a8a04b48f014369d5f7cc1.zip
missing-macros: add GTKDOC_REBASE macro needed by some newer packages Signed-off-by: Jochen Friedrich <jochen@scram.de>
SVN-Revision: 26620
Diffstat (limited to 'tools/missing-macros')
-rw-r--r--tools/missing-macros/Makefile4
-rw-r--r--tools/missing-macros/src/m4/fake-gtk-doc-check.m41
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/missing-macros/Makefile b/tools/missing-macros/Makefile
index 85f8fa1037..ab50a67468 100644
--- a/tools/missing-macros/Makefile
+++ b/tools/missing-macros/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2010 OpenWrt.org
+# Copyright (C) 2010-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=missing-macros
-PKG_VERSION:=9
+PKG_VERSION:=10
include $(INCLUDE_DIR)/host-build.mk
diff --git a/tools/missing-macros/src/m4/fake-gtk-doc-check.m4 b/tools/missing-macros/src/m4/fake-gtk-doc-check.m4
index 501881314b..26fa7234f3 100644
--- a/tools/missing-macros/src/m4/fake-gtk-doc-check.m4
+++ b/tools/missing-macros/src/m4/fake-gtk-doc-check.m4
@@ -9,4 +9,5 @@ AC_DEFUN([GTK_DOC_CHECK],
AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [false])
AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [false])
AM_CONDITIONAL([GTK_DOC_USE_REBASE], [false])
+ AC_PATH_PROGS([GTKDOC_REBASE],[true],[true])
])
id='n193' href='#n193'>193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319