]> git.lyx.org Git - lyx.git/commitdiff
Last(?) missing rename: version.C -> version.cpp
authorEnrico Forestieri <forenr@lyx.org>
Fri, 4 May 2007 00:47:24 +0000 (00:47 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Fri, 4 May 2007 00:47:24 +0000 (00:47 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18194 a592a061-630c-0410-9148-cb99ea01b6c8

configure.ac
development/cmake/src/CMakeLists.txt
development/scons/SConstruct
src/Makefile.am
src/version.cpp.in

index 854dc3d0f35f2e6f6c262f2a7e6d22118ac06b3b..344e48c3bef34f47bb82e2e8471b655f18a8db41 100644 (file)
@@ -417,7 +417,7 @@ AC_CONFIG_FILES([Makefile  m4/Makefile \
        sourcedoc/Makefile \
        src/client/Makefile \
        src/Makefile \
-       src/version.C-tmp:src/version.cpp.in \
+       src/version.cpp-tmp:src/version.cpp.in \
        src/tex2lyx/Makefile \
        src/mathed/Makefile \
        src/graphics/Makefile \
index e1da8332349dd489e84cf75c0bd1fc82cb6552af..18b1bee1fe706808da399b13d69d527fc99cb893 100644 (file)
@@ -18,7 +18,7 @@ if(NOT MERGE_FILES)
 endif(NOT MERGE_FILES)
 
 
-configure_file(${TOP_SRC_DIR}/src/version.cpp.in ${CMAKE_CURRENT_BINARY_DIR}/version.C)
+configure_file(${TOP_SRC_DIR}/src/version.cpp.in ${CMAKE_CURRENT_BINARY_DIR}/version.cpp)
 
 file(GLOB lyx_sources ${TOP_SRC_DIR}/src/${LYX_CPP_FILES})
 file(GLOB lyx_headers ${TOP_SRC_DIR}/src/${LYX_HPP_FILES})
@@ -41,10 +41,10 @@ lyx_add_msvc_pch(lyx)
 
 
 if(NOT MERGE_FILES)
-       set(lyx_sources ${lyx_sources} ${CMAKE_CURRENT_BINARY_DIR}/version.C)
+       set(lyx_sources ${lyx_sources} ${CMAKE_CURRENT_BINARY_DIR}/version.cpp)
 else(NOT MERGE_FILES)
        lyx_const_touched_files(_allinone  lyx_sources)
-       set(lyx_sources ${_allinone_files} ${CMAKE_CURRENT_BINARY_DIR}/version.C
+       set(lyx_sources ${_allinone_files} ${CMAKE_CURRENT_BINARY_DIR}/version.cpp
        )
 endif(NOT MERGE_FILES)
 
index 23b9753f8375488c16265ab678f06e7445bc8ac8..222ec3b0867fbdd35562970ad1272b218d6e460e 100644 (file)
@@ -372,7 +372,7 @@ env.AppendUnique(LIBPATH = ['$LOCALLIBPATH'])
 # full path name is used to build msvs project files
 # and to replace TOP_SRCDIR in package.C
 env['TOP_SRCDIR'] = Dir(top_src_dir).abspath
-# needed by src/version.cpp.in => src/version.C
+# needed by src/version.cpp.in => src/version.cpp
 env['PACKAGE_VERSION'] = package_version
 env['LYX_DATE'] = time.asctime()
 
index d481460628a280ac24e20ce3ecb584cb4b43d56e..64ab18de4313f79b86c3c1f8d24e4b70bbecd32a 100644 (file)
@@ -1,6 +1,6 @@
 include $(top_srcdir)/config/common.am
 
-DISTCLEANFILES += config.h libintl.h version.C stamp-version version.C-tmp
+DISTCLEANFILES += config.h libintl.h version.cpp stamp-version version.cpp-tmp
 
 MAINTAINERCLEANFILES += $(srcdir)/config.h.in
 
@@ -43,7 +43,7 @@ lyx$(EXEEXT): $(FRONTENDS_PROGS)
 
 #lyx_LDFLAGS=-Wl,-O1
 
-BUILT_SOURCES = $(PCH_FILE) version.C
+BUILT_SOURCES = $(PCH_FILE) version.cpp
 
 AM_CPPFLAGS += $(PCH_FLAGS) $(BOOST_INCLUDES)
 
@@ -258,20 +258,20 @@ lyx_SOURCES = \
        update_flags.h \
        VCBackend.cpp \
        VCBackend.h \
-       version.C \
+       version.cpp \
        version.h \
        WordLangTuple.h \
        VSpace.cpp \
        VSpace.h
 
-version.C: stamp-version
+version.cpp: stamp-version
        @:
 
-stamp-version: version.C-tmp
-       if cmp -s $< version.C ; then \
+stamp-version: version.cpp-tmp
+       if cmp -s $< version.cpp ; then \
                : ;\
        else \
-               rm -f version.C ;\
-               cp $< version.C ;\
+               rm -f version.cpp ;\
+               cp $< version.cpp ;\
        fi
        echo timestamp > $@
index e9100cb72c3ef0dc79c61a9b288556ac496d9a5b..c0777ffdd64e24062e782bedb1fcee88148acc33 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- C++ -*- */
 /**
- * \file version.C
+ * \file version.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *