summaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Polish and better document the udev/hotplug code.Eric S. Raymond2010-12-281-1/+1
| | | | It's working under Ubuntu 10.04.1 LTS.
* Conform to current udev naming conventions.Eric S. Raymond2010-12-281-2/+2
|
* Typo fixes.Eric S. Raymond2010-12-261-2/+2
|
* More header portability audting with a new version of deheader.Eric S. Raymond2010-12-221-1/+1
|
* Remove a -DBINARY_ENABLE that was screwing up deheader test compilations.Eric S. Raymond2010-12-221-2/+2
|
* Remove -MULTIOUT_RECOVER_DELETED from Makefile.amBernd Zeimetz2010-12-181-22/+7
|
* Link test_bits with bits.o instead of libgpsd.Greg Troxel2010-12-181-1/+1
| | | | | Without this, test_bits fails to link due to undefined gpsd_report(). >From Beat Bolli on gpsd-dev@.
* Remove a remnant reference to gpsd_report.c.Eric S. Raymond2010-12-171-1/+0
|
* Attempt a better fix for libQgpsmm not linking properly.Eric S. Raymond2010-12-171-1/+1
|
* Factor out our implementation of daemon(3) and use it as a fallback...Eric S. Raymond2010-12-171-0/+4
| | | | | ...in case the local OS doesn't have it (it's not SuS/POSIX portable). >From an idea by Gleb Smirnoff. but with cleaner build-system integration.
* Abolish gpsd_report.c. No more hardwired logging from the client libraries.Eric S. Raymond2010-12-161-1/+0
| | | | Only the daemon now uses this function.
* Noise reduction.Eric S. Raymond2010-12-161-1/+1
|
* Version-stamp the SHA sum file.Eric S. Raymond2010-12-161-2/+2
|
* Work around a splint bug.Eric S. Raymond2010-12-151-2/+4
|
* Trying to isolate a splint error. No code changes.Eric S. Raymond2010-12-151-2/+4
|
* We can't use the Python -B option, it's not back portable to 2.5.Eric S. Raymond2010-12-151-1/+1
|
* Pass MAKE variable to setup.py.Greg Troxel2010-12-141-2/+2
| | | | | | | | | | When run as "make install" on NetBSD, all is well. "gmake install" fails not being able to make target "w". Passing MAKE=$(MAKE) to setup.py resolves this, because the child make from setup.py (why is that happening) is than gmake. I don't know why calling setup.py from gmake and then calling (bsd)make from setup.py is a problem, but it seems to be asking for trouble to switch make implementations in mid-install.
* Wow, I totally baked the geostar import...Chris Kuethe2010-12-111-0/+1
|
* Merge branch 'master' of ssh://git.berlios.de/gitroot/gpsdEric S. Raymond2010-12-111-1/+1
|\ | | | | | | Take gem's version of the chrony path handling.
| * When PPS is built, try to use, but do not require, librt.Gary E. Miller2010-12-111-1/+1
| | | | | | | | | | librt lets gpsd use clock_gettime() which is better than gettimeofday().
* | Code splints clean except for endiabbess stuff in driver_garmin.c.Eric S. Raymond2010-12-081-0/+1
|/
* Merge branch 'master' of ssh://git.berlios.de/gitroot/gpsdEric S. Raymond2010-12-061-3/+6
|\
| * Remove the libgps test binary during make clean.Bernd Zeimetz2010-12-051-1/+3
| |
| * Add missing linking for libbluetooth.Bernd Zeimetz2010-12-031-2/+3
| | | | | | | | This fixes a FTBFS when gpsd is being built with binutils-gold.
* | Typo fix.Eric S. Raymond2010-12-061-1/+1
|/
* Document the deheader production.Eric S. Raymond2010-12-031-3/+4
|
* Clean up the code base and add switches so deheader runs clean.Eric S. Raymond2010-12-031-1/+2
|
* Try to prevent deheader passes from doing mischief.Eric S. Raymond2010-12-021-0/+2
|
* More deheaderizing. All regression tests pass.Eric S. Raymond2010-12-011-1/+1
|
* Typo fix.Eric S. Raymond2010-12-011-2/+2
|
* A production for deheader scans.Eric S. Raymond2010-12-011-0/+7
|
* Better clean for the various Python leftovers.Bernd Zeimetz2010-10-271-1/+3
|
* libtool does not necessarily work with /bin/sh.Bernd Zeimetz2010-10-151-2/+2
| | | | Let autotools decide about the proper way to call libtool.
* Make the hotplug wrapper work when USBAUTO is not set.Miroslav Lichvar2010-09-151-0/+3
| | | | | | | | | | | | The wrapper doesn't seem to work when USBAUTO is not set, this is because [ -n ] gives different result than [ -n "" ], addressed by the attached patch. It includes also the options remapping to be consistent with the rpm init script and sysconfig file, and adds /usr/sbin to PATH which is needed on some systems to find gpsd in the hotplug script. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Add regression tests for identation in Python files.Bernd Zeimetz2010-08-291-1/+6
|
* Let the testregress target depend on geoid-regress.Bernd Zeimetz2010-07-161-1/+1
|
* libgpsd needs to be linked with $(LIBUSB_LIBS)Bernd Zeimetz2010-07-151-0/+2
|
* Fix a few copy and paste errors. Nothing critical luckily.Bernd Zeimetz2010-07-151-7/+7
|
* Bump maximum channel count to 32. Eric S. Raymond2010-07-131-1/+1
| | | | | | | | | This is in order to accommodate devices that can do GLONASS; requires a library-major-version bump. Required a rebuild of two regression tests duee to the change in the number of GSA fields dumped in pseudo-NMEA output. Other than that, all regression tests pass.
* This patch has the changes needed for RPM packaging.Michael R. Davis2010-07-121-6/+10
|
* Remove --exclude in am__tar.Greg Troxel2010-07-111-6/+0
| | | | | | | | | | | | | | Detailed rationale: # We place the test directory in EXTRA_DIST. In general, this runs # the risk of including VCS control files. Previously there was a # kludge: # am__tar += --exclude '.git' --exclude '.gitignore' # but that is unnecessary as git does not place control files in # subdirectories. Also, adding --exclude is not acceptable because # the POSIX tar specification does not include --exclude. tar implemenation # complying with POSIX with tar up .git and .gitignore *instead* of the # intended directory.
* fix configure test for libusbGraham Gower2010-07-061-9/+9
| | | | | | | | The configure test for libusb fails on systems where libusb is not in /usr/include and /usr/lib (e.g. 64 bit systems have /usr/lib64 or e.g. when cross compiling). Use pkg-config instead.
* Enhance the libQgpsmm build process.Bernd Zeimetz2010-07-051-2/+4
| | | | | | | | We now pass libdir and includedir from autotools to qmake to ensure the library is installed in the same location. This should avoid an issue on some distributions where 64bit libraries are living in a different directory. There should be a better way to let qmake figure this out, but for now this should work.
* Configuration machinery for enabling BluZ support.Eric S. Raymond2010-06-181-1/+4
| | | | | No actual code changes, and the default is not to enable this. All regression tests pass.
* Fix website build in the xsltproc case.Eric S. Raymond2010-06-031-0/+5
|
* Minor fixes to make the libQgpsmm build work on all platforms.Bernd Zeimetz2010-05-161-8/+10
|
* Building gpsd_maskdump.c requires gpsd.h.Bernd Zeimetz2010-05-161-1/+1
|
* Create and ship necessary files for the mingw build.Bernd Zeimetz2010-05-161-5/+15
|
* Refactor check for QT, adding --disable-libQgpsmm as option.Bernd Zeimetz2010-05-161-5/+5
|
* Exclude .git and .gitignore instead of *git*.Bernd Zeimetz2010-05-151-1/+1
|