Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
9b3e00b3
Kaydet (Commit)
9b3e00b3
authored
Agu 29, 2016
tarafından
Damjan Jovanovic
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Port main/fileaccess to gbuild.
Patch by: me
üst
a8ee4f31
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
206 additions
and
11 deletions
+206
-11
Repository.mk
Repository.mk
+1
-0
Library_fileacc.mk
fileaccess/Library_fileacc.mk
+57
-0
Makefile
fileaccess/Makefile
+32
-0
Module_fileaccess.mk
fileaccess/Module_fileaccess.mk
+30
-0
dllapi.h
fileaccess/inc/fileaccess/dllapi.h
+36
-0
build.lst
fileaccess/prj/build.lst
+1
-2
d.lst
fileaccess/prj/d.lst
+0
-6
makefile.mk
fileaccess/prj/makefile.mk
+44
-0
FileAccess.cxx
fileaccess/source/FileAccess.cxx
+4
-2
fileacc.component
fileaccess/util/fileacc.component
+0
-0
makefile.mk
postprocess/packcomponents/makefile.mk
+1
-1
No files found.
Repository.mk
Dosyayı görüntüle @
9b3e00b3
...
@@ -61,6 +61,7 @@ $(eval $(call gb_Helper_register_libraries,OOOLIBS, \
...
@@ -61,6 +61,7 @@ $(eval $(call gb_Helper_register_libraries,OOOLIBS, \
svgio \
svgio \
editeng \
editeng \
file \
file \
fileacc \
for \
for \
forui \
forui \
fwe \
fwe \
...
...
fileaccess/Library_fileacc.mk
0 → 100644
Dosyayı görüntüle @
9b3e00b3
#**************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#**************************************************************
$(eval $(call gb_Library_Library,fileacc))
$(eval $(call gb_Library_set_componentfile,fileacc,fileaccess/util/fileacc))
$(eval $(call gb_Library_set_include,fileacc,\
$$(INCLUDE) \
-I$(SRCDIR)/fileaccess/inc \
))
$(eval $(call gb_Library_add_defs,fileacc,\
-DFILEACCESS_DLLIMPLEMENTATION \
))
$(eval $(call gb_Library_add_api,fileacc,\
offapi \
udkapi \
))
$(eval $(call gb_Library_add_linked_libs,fileacc,\
utl \
tl \
ucbhelper \
cppuhelper \
cppu \
sal \
$(gb_STDLIBS) \
))
$(eval $(call gb_Library_add_exception_objects,fileacc,\
fileaccess/source/FileAccess \
))
# vim: set noet sw=4 ts=4:
fileaccess/Makefile
0 → 100644
Dosyayı görüntüle @
9b3e00b3
#**************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#**************************************************************
ifeq
($(strip
$(SOLARENV)),)
$(error
No
environment
set!)
endif
gb_PARTIALBUILD
:=
T
GBUILDDIR
:=
$(SOLARENV)
/gbuild
include
$(GBUILDDIR)/gbuild.mk
$(eval
$(call
gb_Module_make_global_targets,$(shell
ls
$(dir
$(realpath
$(firstword
$(MAKEFILE_LIST))))/Module*.mk)))
# vim: set noet sw=4 ts=4:
fileaccess/Module_fileaccess.mk
0 → 100644
Dosyayı görüntüle @
9b3e00b3
#**************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#**************************************************************
$(eval $(call gb_Module_Module,fileaccess))
$(eval $(call gb_Module_add_targets,fileaccess,\
Library_fileacc \
))
# vim: set noet sw=4 ts=4:
fileaccess/inc/fileaccess/dllapi.h
0 → 100644
Dosyayı görüntüle @
9b3e00b3
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef FILEACCESS_DLLAPI_H
#define FILEACCESS_DLLAPI_H
#include "sal/config.h"
#include "sal/types.h"
#if defined FILEACCESS_DLLIMPLEMENTATION
#define FILEACCESS_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
#else
#define FILEACCESS_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
#endif
#endif
fileaccess/prj/build.lst
Dosyayı görüntüle @
9b3e00b3
fa fileaccess : unotools rdbmaker tools ucbhelper LIBXSLT:libxslt NULL
fa fileaccess : unotools rdbmaker tools ucbhelper LIBXSLT:libxslt NULL
fa fileaccess usr1 - all fa_mkout NULL
fa fileaccess\prj nmake - all fa_prj NULL
fa fileaccess\source nmake - all fa_src NULL
fileaccess/prj/d.lst
Dosyayı görüntüle @
9b3e00b3
..\%__SRC%\bin\*.dll %_DEST%\bin%_EXT%\*
..\%__SRC%\bin\*.rdb %_DEST%\rdb%_EXT%\*
..\%__SRC%\lib\lib*.so %_DEST%\lib%_EXT%
..\%__SRC%\lib\*.dylib %_DEST%\lib%_EXT%\*
..\source\fileacc.xml %_DEST%\xml%_EXT%\fileacc.xml
..\%__SRC%\misc\fileacc.component %_DEST%\xml%_EXT%\fileacc.component
fileaccess/prj/makefile.mk
0 → 100644
Dosyayı görüntüle @
9b3e00b3
#**************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#**************************************************************
PRJ
=
..
TARGET
=
prj
.INCLUDE
:
settings.mk
.IF
"$(VERBOSE)"
!=
""
VERBOSEFLAG
:=
.ELSE
VERBOSEFLAG
:=
-s
.ENDIF
.IF
"$(DEBUG)"
!=
""
DEBUG_ARGUMENT
=
DEBUG
=
$(DEBUG)
.ELIF
"$(debug)"
!=
""
DEBUG_ARGUMENT
=
debug
=
$(debug)
.ELSE
DEBUG_ARGUMENT
=
.ENDIF
all
:
cd
$(PRJ)
&&
$(GNUMAKE)
$(VERBOSEFLAG)
-r
-j$(MAXPROCESS)
$(gb_MAKETARGET)
$(DEBUG_ARGUMENT)
&&
$(GNUMAKE)
$(VERBOSEFLAG)
-r
deliverlog
fileaccess/source/FileAccess.cxx
Dosyayı görüntüle @
9b3e00b3
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
#include <osl/mutex.hxx>
#include <osl/mutex.hxx>
#include <osl/diagnose.h>
#include <osl/diagnose.h>
#include "fileaccess/dllapi.h"
#include <uno/mapping.hxx>
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/factory.hxx>
...
@@ -904,13 +906,13 @@ Sequence< rtl::OUString > FileAccess_getSupportedServiceNames()
...
@@ -904,13 +906,13 @@ Sequence< rtl::OUString > FileAccess_getSupportedServiceNames()
extern
"C"
extern
"C"
{
{
//==================================================================================================
//==================================================================================================
void
SAL_CALL
component_getImplementationEnvironment
(
FILEACCESS_DLLPUBLIC
void
SAL_CALL
component_getImplementationEnvironment
(
const
sal_Char
**
ppEnvTypeName
,
uno_Environment
**
/*ppEnv*/
)
const
sal_Char
**
ppEnvTypeName
,
uno_Environment
**
/*ppEnv*/
)
{
{
*
ppEnvTypeName
=
CPPU_CURRENT_LANGUAGE_BINDING_NAME
;
*
ppEnvTypeName
=
CPPU_CURRENT_LANGUAGE_BINDING_NAME
;
}
}
//==================================================================================================
//==================================================================================================
void
*
SAL_CALL
component_getFactory
(
FILEACCESS_DLLPUBLIC
void
*
SAL_CALL
component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
/*pRegistryKey*/
)
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
/*pRegistryKey*/
)
{
{
void
*
pRet
=
0
;
void
*
pRet
=
0
;
...
...
fileaccess/
source
/fileacc.component
→
fileaccess/
util
/fileacc.component
Dosyayı görüntüle @
9b3e00b3
File moved
postprocess/packcomponents/makefile.mk
Dosyayı görüntüle @
9b3e00b3
...
@@ -78,6 +78,7 @@ my_components = \
...
@@ -78,6 +78,7 @@ my_components = \
component/dbaccess/util/dba
\
component/dbaccess/util/dba
\
component/dbaccess/util/dbu
\
component/dbaccess/util/dbu
\
component/dbaccess/util/sdbt
\
component/dbaccess/util/sdbt
\
component/fileaccess/util/fileacc
\
component/formula/util/for
\
component/formula/util/for
\
component/framework/util/fwk
\
component/framework/util/fwk
\
component/framework/util/fwl
\
component/framework/util/fwl
\
...
@@ -129,7 +130,6 @@ my_components = \
...
@@ -129,7 +130,6 @@ my_components = \
dlgprov
\
dlgprov
\
embobj
\
embobj
\
evtatt
\
evtatt
\
fileacc
\
filterconfig1
\
filterconfig1
\
flash
\
flash
\
flat
\
flat
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment