From 5986d17e47d52876a1eb4d43b02454afb9f90e0b Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Fri, 12 Oct 2018 09:25:16 +0000 Subject: [PATCH] Update: Renamed libpermafrost libigloo --- Makefile.am | 8 ++++---- autogen.sh | 2 +- configure.ac | 4 ++-- permafrost.pc.in => igloo.pc.in | 4 ++-- libpermafrost.c => libigloo.c | 0 5 files changed, 9 insertions(+), 9 deletions(-) rename permafrost.pc.in => igloo.pc.in (77%) rename libpermafrost.c => libigloo.c (100%) diff --git a/Makefile.am b/Makefile.am index bffd6f4..b685c99 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,10 +4,10 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = avl httpp log net thread timing -lib_LTLIBRARIES = libpermafrost.la +lib_LTLIBRARIES = libigloo.la -libpermafrost_la_SOURCES = libpermafrost.c -libpermafrost_la_LIBADD = \ +libigloo_la_SOURCES = libigloo.c +libigloo_la_LIBADD = \ avl/libiceavl.la \ httpp/libicehttpp.la \ log/libicelog.la \ @@ -15,7 +15,7 @@ libpermafrost_la_LIBADD = \ thread/libicethread.la \ timing/libicetiming.la -pkgconfig_DATA = permafrost.pc +pkgconfig_DATA = igloo.pc static: $(MAKE) all LDFLAGS="${LDFLAGS} -all-static" diff --git a/autogen.sh b/autogen.sh index da591b5..36ae126 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,6 +5,6 @@ set -e srcdir=$(dirname "$0") test -n "$srcdir" && cd "$srcdir" -echo "Updating build configuration files for permafrost, please wait..." +echo "Updating build configuration files for igloo, please wait..." autoreconf -isf diff --git a/configure.ac b/configure.ac index 9816ba7..57ae400 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([permafrost], [0.0.1], [icecast@xiph.org]) +AC_INIT([igloo], [0.0.1], [icecast@xiph.org]) AC_PREREQ([2.54]) @@ -157,7 +157,7 @@ AC_CONFIG_FILES([ log/Makefile net/Makefile timing/Makefile - permafrost.pc + igloo.pc ]) AC_OUTPUT diff --git a/permafrost.pc.in b/igloo.pc.in similarity index 77% rename from permafrost.pc.in rename to igloo.pc.in index 4f4a02d..f323e1c 100644 --- a/permafrost.pc.in +++ b/igloo.pc.in @@ -3,8 +3,8 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ -Name: permafrost +Name: igloo Description: Common used helpers for Icecast and related projects Version: @VERSION@ Cflags: -I${includedir} -pthread -Libs: -L${libdir} -lpermafrost -pthread +Libs: -L${libdir} -ligloo -pthread diff --git a/libpermafrost.c b/libigloo.c similarity index 100% rename from libpermafrost.c rename to libigloo.c