1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
|
Author: Ole Streicher <debian@liska.ath.cx>
Description: The include files are going to be installed in
/usr/include/funtools. So, they should refer to each other by using ""
instead of <> which also searches in the current directory.
--- a/filter/column.h
+++ b/filter/column.h
@@ -12,14 +12,14 @@
#define __column_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
-#include <prsetup.h>
+#include "prsetup.h"
_PRbeg
void ColumnLoad _PRx((char *ibuf, int size, int n, int convert, void *obuf));
--- a/filter/dl.h
+++ b/filter/dl.h
@@ -2,14 +2,14 @@
#define __dl_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif
-#include <prsetup.h>
+#include "prsetup.h"
_PRbeg
--- a/filter/filter.h
+++ b/filter/filter.h
@@ -12,7 +12,7 @@
#define __filter_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
/* avoid use of system -- its not secure */
@@ -34,28 +34,28 @@
#include <string.h>
#endif
#include <sys/types.h>
-#include <prsetup.h>
-#include <gio.h>
-#include <file.h>
-#include <find.h>
-#include <macro.h>
-#include <word.h>
-#include <xalloc.h>
-#include <strtod.h>
+#include "prsetup.h"
+#include "gio.h"
+#include "file.h"
+#include "find.h"
+#include "macro.h"
+#include "word.h"
+#include "xalloc.h"
+#include "strtod.h"
#define USE_XFILEIO 1
-#include <fitsy.h>
+#include "fitsy.h"
#undef USE_XFILEIO
-#include <idx.h>
-#include <wcs.h>
-#include <column.h>
-#include <tl.h>
-#include <dl.h>
-#include <mkrtemp.h>
-#include <zprocess.h>
-#include <winprocess.h>
-#include <parse.h>
+#include "idx.h"
+#include "wcs.h"
+#include "column.h"
+#include "tl.h"
+#include "dl.h"
+#include "mkrtemp.h"
+#include "zprocess.h"
+#include "winprocess.h"
+#include "parse.h"
#ifdef USE_LAUNCH
-#include <xlaunch.h>
+#include "xlaunch.h"
#endif
#ifndef OBJPATH
--- a/filter/idx.h
+++ b/filter/idx.h
@@ -11,9 +11,9 @@
#define __idx_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
-#include <prsetup.h>
+#include "prsetup.h"
#include <stdio.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
@@ -22,10 +22,10 @@
#ifdef HAVE_STRING_H
#include <string.h>
#endif
-#include <fitsy.h>
-#include <gio.h>
-#include <xalloc.h>
-#include <strtod.h>
+#include "fitsy.h"
+#include "gio.h"
+#include "xalloc.h"
+#include "strtod.h"
/* binary search edge */
#define IDX_EDGE_LEFT 1
--- a/filter/tl.h
+++ b/filter/tl.h
@@ -11,7 +11,7 @@
#ifndef __tl_h
#define __tl_h
-#include <prsetup.h>
+#include "prsetup.h"
_PRbeg
--- a/fitsy/fitsy.h
+++ b/fitsy/fitsy.h
@@ -5,13 +5,13 @@
#define FITSY_H
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#if USE_XFILEIO
-#include <xfileio.h>
+#include "xfileio.h"
#else
-#include <xfile.h>
+#include "xfile.h"
#endif
#ifdef __STDC__
@@ -30,7 +30,7 @@
#include <ctype.h>
-#include <longlong.h>
+#include "longlong.h"
#ifndef NULL
#define NULL 0
--- a/funtools.h
+++ b/funtools.h
@@ -27,11 +27,11 @@
#define FUN_VERSION "1.4.4"
#ifndef FUNTOOLS_PRIVATE
-#include <prsetup.h>
+#include "prsetup.h"
#define USE_XFILEIO 1
-#include <fitsy.h>
+#include "fitsy.h"
#undef USE_XFILEIO
-#include <wcs.h>
+#include "wcs.h"
typedef void *Fun;
#endif
--- a/funtoolsP.h
+++ b/funtoolsP.h
@@ -12,7 +12,7 @@
#define __funtoolsP_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
@@ -32,20 +32,20 @@
#include <getopt.h>
#endif
#include <sys/types.h>
-#include <prsetup.h>
+#include "prsetup.h"
#define USE_XFILEIO 1
-#include <fitsy.h>
+#include "fitsy.h"
#undef USE_XFILEIO
-#include <wcs.h>
-#include <filter.h>
-#include <file.h>
-#include <swap.h>
-#include <word.h>
-#include <parse.h>
-#include <xalloc.h>
-#include <mkrtemp.h>
-#include <NaN.h>
-#include <xlaunch.h>
+#include "wcs.h"
+#include "filter.h"
+#include "file.h"
+#include "swap.h"
+#include "word.h"
+#include "parse.h"
+#include "xalloc.h"
+#include "mkrtemp.h"
+#include "NaN.h"
+#include "xlaunch.h"
#ifndef MAXINT
#define MAXINT 2147483647
@@ -338,6 +338,6 @@ int FunView _PRx((Fun fun, char *view, char *vmode, char *fname, int fmax));
_PRend
-#include <funtools.h>
+#include "funtools.h"
#endif /* __funtoolsP.h */
--- a/ofuntools.h
+++ b/ofuntools.h
@@ -27,11 +27,11 @@
#define FUN_VERSION "1.4.4"
#ifndef FUNTOOLS_PRIVATE
-#include <prsetup.h>
+#include "prsetup.h"
#define USE_XFILEIO 1
-#include <fitsy.h>
+#include "fitsy.h"
#undef USE_XFILEIO
-#include <wcs.h>
+#include "wcs.h"
typedef void *Fun;
#endif
--- a/util/NaN.h.in
+++ b/util/NaN.h.in
@@ -20,7 +20,7 @@
#ifndef __nan_h
#define __nan_h
-#include <prsetup.h>
+#include "prsetup.h"
#define BIGENDIAN @BIGENDIAN@
--- a/util/file.h
+++ b/util/file.h
@@ -12,7 +12,7 @@
#define __file_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
@@ -28,9 +28,9 @@
#endif
#include <sys/types.h>
#include <sys/stat.h>
-#include <prsetup.h>
-#include <macro.h>
-#include <xalloc.h>
+#include "prsetup.h"
+#include "macro.h"
+#include "xalloc.h"
_PRbeg
int FileExists _PRx((char *filename));
--- a/util/find.h
+++ b/util/find.h
@@ -12,7 +12,7 @@
#define __find_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
@@ -25,8 +25,8 @@
#endif
#include <sys/types.h>
#include <sys/stat.h>
-#include <xalloc.h>
-#include <prsetup.h>
+#include "xalloc.h"
+#include "prsetup.h"
_PRbeg
--- a/util/gio.h
+++ b/util/gio.h
@@ -11,10 +11,10 @@
#ifndef _gio_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
-#include <xport.h>
+#include "xport.h"
#include <stdio.h>
#ifdef HAVE_STRING_H
@@ -46,8 +46,8 @@
#include <sys/stat.h>
#include <sys/time.h>
-#include <prsetup.h>
-#include <xalloc.h>
+#include "prsetup.h"
+#include "xalloc.h"
/* use ftello/fseeko (assuming its available) if we are using 64-bit offsets */
#if _FILE_OFFSET_BITS == 64
--- a/util/macro.h
+++ b/util/macro.h
@@ -12,7 +12,7 @@
#define __macro_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
@@ -26,7 +26,7 @@
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
-#include <prsetup.h>
+#include "prsetup.h"
typedef char *(*MacroCall)(
#ifdef ANSI_FUNC
--- a/util/mainlib.h
+++ b/util/mainlib.h
@@ -12,7 +12,7 @@
#define __mainlib_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#ifdef HAVE_STRING_H
#include <string.h>
@@ -29,11 +29,11 @@
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
-#include <prsetup.h>
-#include <xalloc.h>
-#include <word.h>
-#include <find.h>
-#include <gio.h>
+#include "prsetup.h"
+#include "xalloc.h"
+#include "word.h"
+#include "find.h"
+#include "gio.h"
/* types of mainlibs we recognize */
#define MAINLIB_ERROR 0
--- a/util/mkrtemp.h
+++ b/util/mkrtemp.h
@@ -12,7 +12,7 @@
#define __mkrtemp_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <sys/types.h>
@@ -31,9 +31,9 @@
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
-#include <prsetup.h>
-#include <word.h>
-#include <xalloc.h>
+#include "prsetup.h"
+#include "word.h"
+#include "xalloc.h"
#ifdef __APPLE__
#define lrand48 random
--- a/util/parse.h
+++ b/util/parse.h
@@ -12,7 +12,7 @@
#define __parse_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
@@ -33,12 +33,12 @@
#endif
#include <ctype.h>
-#include <prsetup.h>
-#include <strtod.h>
-#include <xalloc.h>
-#include <word.h>
-#include <gio.h>
-#include <longlong.h>
+#include "prsetup.h"
+#include "strtod.h"
+#include "xalloc.h"
+#include "word.h"
+#include "gio.h"
+#include "longlong.h"
#define PARSE_DEBUG 1
#if PARSE_DEBUG
--- a/util/strtod.h
+++ b/util/strtod.h
@@ -11,7 +11,7 @@
#ifndef __strtod_h
#define __strtod_h
-#include <prsetup.h>
+#include "prsetup.h"
extern int SAOdtype;
--- a/util/swap.h
+++ b/util/swap.h
@@ -11,7 +11,7 @@
#ifndef __swap_h
#define __swap_h
-#include <prsetup.h>
+#include "prsetup.h"
/* data types */
#define TY_CHAR 1
--- a/util/tclmainlib.h
+++ b/util/tclmainlib.h
@@ -1,4 +1,4 @@
-#include <mainlib.h>
+#include "mainlib.h"
#if HAVE_TCL
--- a/util/winprocess.h
+++ b/util/winprocess.h
@@ -13,7 +13,7 @@
#define __winprocess_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
#ifdef HAVE_UNISTD_H
@@ -25,7 +25,7 @@
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
-#include <prsetup.h>
+#include "prsetup.h"
#if defined(HAVE_CYGWIN) || defined(WIN32)
--- a/util/word.h
+++ b/util/word.h
@@ -12,7 +12,7 @@
#define __word_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#ifdef HAVE_STRING_H
#include <string.h>
@@ -23,8 +23,8 @@
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif
-#include <prsetup.h>
-#include <xalloc.h>
+#include "prsetup.h"
+#include "xalloc.h"
/* defines the types of callback procedure we use */
typedef char *(*MacroCB)(
--- a/util/xalloc.h
+++ b/util/xalloc.h
@@ -12,7 +12,7 @@
#define __xalloc_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <sys/types.h>
@@ -33,7 +33,7 @@
#include <setjmp.h>
#endif
-#include <prsetup.h>
+#include "prsetup.h"
_PRbeg
--- a/util/xfileio.h
+++ b/util/xfileio.h
@@ -7,7 +7,7 @@
#ifndef XFILEIO_H
#define XFILEIO_H
-#include <gio.h>
+#include "gio.h"
/* define the basic IO routines */
typedef GIO File;
--- a/util/xlaunch.h
+++ b/util/xlaunch.h
@@ -12,7 +12,7 @@
#define __xlaunch_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
@@ -33,10 +33,10 @@
#if HAVE_POSIX_SPAWN
#include <spawn.h>
#endif
-#include <xport.h>
-#include <word.h>
-#include <xalloc.h>
-#include <prsetup.h>
+#include "xport.h"
+#include "word.h"
+#include "xalloc.h"
+#include "prsetup.h"
#define LAUNCH_ARGS 1024
--- a/util/xport.h
+++ b/util/xport.h
@@ -11,7 +11,7 @@
#define __xport_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#if HAVE_MINGW32
--- a/util/zprocess.h
+++ b/util/zprocess.h
@@ -14,7 +14,7 @@
#define __zprocess_h
#if HAVE_CONFIG_H
-#include <conf.h>
+#include "conf.h"
#endif
#include <stdio.h>
#ifdef HAVE_UNISTD_H
@@ -28,8 +28,8 @@
#endif
#include <sys/time.h>
#include <signal.h>
-#include <xlaunch.h>
-#include <find.h>
+#include "xlaunch.h"
+#include "find.h"
_PRbeg
|